home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 117 / MacAddict 117.dmg / Software / Utilities / SafeTerminal 0.3 (freeware).dmg / Safe Terminal / Safe Terminal.bundle / Contents / Resources / STAppDelegate.h
Encoding:
Text File  |  2006-02-26  |  593 b   |  25 lines

  1. /*!
  2.     @header STAppDelegate
  3.     @abstract   Safe Terminal principle class
  4.     @copyright ¬© 2006 Nir Soffer
  5.  */
  6.  
  7. #import <Cocoa/Cocoa.h>
  8.  
  9.  
  10. /*!
  11.     @class STAppDelegate
  12.     @abstract   Application delegate decorator for Terminal.app
  13.     @discussion Install an application delegate decorator that does not
  14.                 open any file in Terminal.app.
  15.  */
  16.  
  17. @interface STAppDelegate : NSObject {
  18.     id delegate;
  19. }
  20. - (BOOL)install;
  21. - (void)setDelegate:(id)anObject;
  22. - (void)applicationDidFinishLounching:(NSNotification *)notification;
  23. - (NSAlert *)alertForFilename:(NSString *)filename;
  24. @end
  25.